home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 85 / CD Actual 85 Febrero 2004.iso / Experto / Apache / apache_2.0.48-win32-x86-no_ssl.msi / Data.Cab / F252351_public_html.html.en < prev    next >
Encoding:
Extensible Markup Language  |  2003-05-29  |  8.4 KB  |  149 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>Per-user web directories - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body id="manual-page"><div id="page-header">
  14. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  15. <p class="apache">Apache HTTP Server Version 2.0</p>
  16. <img alt="" src="../images/feather.gif" /></div>
  17. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  18. <div id="path">
  19. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs-project/">Documentation</a> > <a href="../">Version 2.0</a> > <a href="./">How-To / Tutorials</a></div><div id="page-content"><div id="preamble"><h1>Per-user web directories</h1>
  20. <div class="toplang">
  21. <p><span>Available Languages: </span><a href="../en/howto/public_html.html" title="English"> en </a></p>
  22. </div>
  23.  
  24. <p>On systems with multiple users, each user can be permitted to have a
  25.     web site in their home directory using the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive. Visitors
  26.     to a URL <code>http://example.com/~username/</code> will get content
  27.     out of the home directory of the user "<code>username</code>", out of
  28.     the subdirectory specified by the <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code> directive.</p>
  29.  
  30. </div>
  31. <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#related">Per-user web directories</a></li>
  32. <li><img alt="" src="../images/down.gif" /> <a href="#userdir">Setting the file path with UserDir</a></li>
  33. <li><img alt="" src="../images/down.gif" /> <a href="#enable">Restricting what users are permitted to use this 
  34.     feature</a></li>
  35. <li><img alt="" src="../images/down.gif" /> <a href="#cgi">Enabling a cgi directory for each user</a></li>
  36. <li><img alt="" src="../images/down.gif" /> <a href="#htaccess">Allowing users to alter configuration</a></li>
  37. </ul><h3>See also</h3><ul class="seealso"><li><a href="../urlmapping.html">Mapping URLs to the Filesystem</a></li></ul></div>
  38. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  39. <div class="section">
  40. <h2><a name="related" id="related">Per-user web directories</a></h2>
  41.     
  42.     <table class="related"><tr><th>Related Modules</th><th>Related Directives</th></tr><tr><td><ul><li><code class="module"><a href="../mod/mod_userdir.html">mod_userdir</a></code></li></ul></td><td><ul><li><code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code></li><li><code class="directive"><a href="../mod/core.html#directorymatch">DirectoryMatch</a></code></li><li><code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code></li></ul></td></tr></table>
  43.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  44. <div class="section">
  45. <h2><a name="userdir" id="userdir">Setting the file path with UserDir</a></h2>
  46.     
  47.  
  48.     <p>The <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
  49.     directive specifies a directory out of which per-user
  50.     content is loaded. This directive may take several different forms.</p>
  51.  
  52.     <p>If a path is given which does not start with a leading slash, it is
  53.     assumed to be a directory path relative to the home directory of the
  54.     specified user. Given this configuration:</p>
  55.  
  56.     <div class="example"><p><code>
  57.       UserDir public_html
  58.     </code></p></div>
  59.  
  60.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  61.     translated to the file path
  62.     <code>/home/rbowen/public_html/file.html</code></p>
  63.  
  64.     <p>If a path is given starting with a slash, a directory path will be
  65.     constructed using that path, plus the username specified. Given this
  66.     configuration:</p>
  67.  
  68.     <div class="example"><p><code>
  69.       UserDir /var/html
  70.     </code></p></div>
  71.  
  72.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  73.     translated to the file path <code>/var/html/rbowen/file.html</code></p>
  74.  
  75.     <p>If a path is provided which contains an asterisk (*), a path is used
  76.     in which the asterisk is replaced with the username. Given this
  77.     configuration:</p>
  78.  
  79.     <div class="example"><p><code>
  80.       UserDir /var/www/*/docs
  81.     </code></p></div>
  82.  
  83.     <p>the URL <code>http://example.com/~rbowen/file.html</code> will be
  84.     translated to the file path
  85.     <code>/var/www/rbowen/docs/file.html</code></p>
  86.  
  87.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  88. <div class="section">
  89. <h2><a name="enable" id="enable">Restricting what users are permitted to use this 
  90.     feature</a></h2>
  91.     
  92.  
  93.     <p>Using the syntax show in the UserDir documentation, you can restrict
  94.     what users are permitted to use this functionality:</p>
  95.  
  96.     <div class="example"><p><code>
  97.       UserDir enabled<br />
  98.       UserDir disabled root jro fish
  99.     </code></p></div>
  100.  
  101.     <p>The configuration above will enable the feature for all users
  102.     except for those listed in the <code>disabled</code> statement.
  103.     You can, likewise, disable the feature for all but a few users by
  104.     using a configuration like the following:</p>
  105.  
  106.     <div class="example"><p><code>
  107.       UserDir disabled<br />
  108.       UserDir enabled rbowen krietz
  109.     </code></p></div>
  110.  
  111.     <p>See <code class="directive"><a href="../mod/mod_userdir.html#userdir">UserDir</a></code>
  112.     documentation for additional examples.</p>
  113.  
  114.   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  115. <div class="section">
  116. <h2><a name="cgi" id="cgi">Enabling a cgi directory for each user</a></h2>
  117.   
  118.  
  119.    <p>In order to give each user their own cgi-bin directory, you can use
  120.     a <code class="directive"><a href="../mod/core.html#directory"><Directory></a></code>
  121.     directive to make a particular subdirectory of a user's home directory
  122.     cgi-enabled.</p>
  123.  
  124.     <div class="example"><p><code>
  125.       <Directory /home/*/cgi-bin/><br />
  126.        Options ExecCGI<br />
  127.        SetHandler cgi-script<br />
  128.        </Directory>
  129.     </code></p></div>
  130.  
  131.     </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  132. <div class="section">
  133. <h2><a name="htaccess" id="htaccess">Allowing users to alter configuration</a></h2>
  134.     
  135.  
  136.     <p>If you want to allows users to modify the server configuration in
  137.     their web space, they will need to use <code>.htaccess</code> files to
  138.     make these changed. Ensure that you have set <code class="directive"><a href="../mod/core.html#allowoverride">AllowOverride</a></code> to a
  139.     value sufficient for the directives that you want to permit the users
  140.     to modify. See the <a href="htaccess.html">.htaccess tutorial</a> for
  141.     additional details on how this works.</p>
  142.  
  143.   </div></div>
  144. <div class="bottomlang">
  145. <p><span>Available Languages: </span><a href="../en/howto/public_html.html" title="English"> en </a></p>
  146. </div><div id="footer">
  147. <p class="apache">Maintained by the <a href="http://httpd.apache.org/docs-project/">Apache HTTP Server Documentation Project</a></p>
  148. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  149. </body></html>